@font-face {
    font-family: 'Montserrat Thin';
    src: url('../../fonts/Montserrat/Montserrat-VariableFont_wght.ttf') format('truetype');
}

@font-face {
    font-family: 'Display Fair';
    src: url('../../fonts/Playfair_Display/PlayfairDisplay-Italic-VariableFont_wght.ttf') format('truetype');
}

* {
    padding: 0;
    margin: 0;
    font-family: 'Montserrat Thin';
}

.BranText {
    font-family: 'Montserrat Thin';
    color: white;
}

.BranText span {
    font-size: 45px;
    margin-bottom: 50px;
}

.BranText span span {
    font-family: 'Display Fair';
    color: #9ED7F5;
}

.Loading {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-direction: column;
    position: fixed;
    width: 100%;
    height: 100vh;
    background: #8DA7BE;
    z-index: 800000;
}

.Loading p {
    animation: blink 1s infinite alternate;
}

@keyframes blink {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

body::-webkit-scrollbar {
    width: 5px;
    /* width of the entire scrollbar */
}

body::-webkit-scrollbar-track {
    background: white;
    /* color of the tracking area */
}

body::-webkit-scrollbar-thumb {
    background-color: #455869;
    /* color of the scroll thumb */
    border-radius: 5px;
    /* roundness of the scroll thumb */
    border: 1px solid #455869;
    /* creates padding around scroll thumb */
}

main {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
}

header {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    height: 89vh;
}

.Container-Header {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    height: 100%;
}

.Container-Header::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 60px;
    bottom: 0;
    left: 0;
    right: 0;
    background-image: linear-gradient(to top, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
    z-index: 999;
}

.Container-Header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.Line-Into {
    width: 50px;
    height: 3px;
    background: white;
    transform: rotate(90deg)
}

.Container-Header-Text {
    display: flex;
    justify-content: start;
    align-items: start;
    flex-direction: column;
    position: absolute;
    color: white;
    width: 50%;
    top: 60%;
    left: 20px;
}

.Container-Header-Text h1 {
    text-align: start;
    font-size: 65px;
    font-weight: 500;
}

.Container-Header-Text h1 span {
    font-family: 'Display Fair';
    font-size: 60px;
    font-weight: 100;
}

.WD-Title-Img__Container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.WD-Title-Img__Container h2 {
    font-family: 'Display Fair';
}

.WD-Title-Img__Container h3 {
    width: 100%;
    font-size: 25px;
    font-family: 'Montserrat Thin';
    font-weight: 500;
}

.Container-Header-Text .Line-Into {
    margin-top: 30px;
    margin-bottom: 30px;
}

.Container-Header-Text button {
    width: 170px;
    height: 60px;
    border-radius: 35px;
    padding: 5px;
    background: transparent;
    border: 2px solid white;
    transition: all ease-in-out .2s;
    cursor: pointer;
}

.Container-Header-Text button div {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    border-radius: 35px;
    background:  #8DA7BE;
    text-transform: uppercase;
    font-weight: 600;
    color: white;
    transition: all ease-in-out .2s;
}

.Container-Header-Text button:hover {
    padding: 8px;
    > div {
        background: white;
        color: #8DA7BE;
    }
}

.Container-Links-A {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 220px;
    width: 40px;
    background: #8DA7BE;
    box-shadow: 3px 2px 2px 2px rgb(0, 0, 0, .5);
    border-radius: 20px;
    position: fixed;
    top: calc(100% / 3.5);
    right: 0;
    z-index: 99000;
}

.Container-Links-A ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
}

.Container-Links-A ul li {
    list-style: none;
}

.Container-Links-A ul li a {
    width: 26px;
    height: 26px;
    color: white;
    transition: all ease-in-out .1s;
}

.Container-Links-A ul li a svg {
    width: 20px;
    height: 20px;
    transition: all ease-in-out .1s;
}

.Container-Links-A ul li a:hover {
    > svg {
        width: 23px;
        height: 23px;
    }
}

/*
TRAVEL DERMATOLOGY SECTION
*/

.TravelDerma-Section {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
}

.TDS-Container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-top: 50px;
    padding-left: 40px;
    padding-right: 40px;
    gap: 20px;
}

.TDSC-Text, .TDSC-Image {
    width: 50%;
}

.TDSC-Text {
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    gap: 20px;
}

.TDSC-Text p {
    text-align: justify;
}

.TDSC-Image img {
    width: 100%;
}

@media screen and (max-width: 1069px) {
    .TDS-Container {
        flex-direction: column;
    }

    .TDSC-Text, .TDSC-Image {
        width: 100%;
    }

    .Container-Header-Text h1 {
        font-size: 47px;
        font-weight: 100;
    }

    .Container-Header-Text h1 span {
        font-family: 'Display Fair';
        font-size: 47px;
        font-weight: 100;
    }

    .Container-Links-A {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 184px;
        width: 32px;
        background: #8DA7BE;
        box-shadow: 3px 2px 2px 2px rgb(0, 0, 0, .5);
        border-radius: 20px;
        position: fixed;
        top: calc(100% / 3.5);
        right: 0;
        z-index: 99000;
    }

    .Container-Links-A ul li a svg {
        width: 15px;
        height: 15px;
        transition: all ease-in-out .1s;
    }

    .Container-Links-A ul li a:hover {
        > svg {
            width: 15px;
            height: 15px;
            color: #607282;
        }
    }

}